home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / editor / be300.zip / HEXKEY.CHS < prev    next >
Text File  |  1992-10-18  |  319b  |  11 lines

  1. /* this routine functions the same as HEXKEY.COM
  2. /* it displays the hex and decimal value of a keystroke
  3. {     
  4.    int i;
  5.    msg("Press any key ... (Escape exits)");
  6.    i=getkey();
  7.    while((i%256)!=27){
  8.       msg("Value is %04lx [%06ld] ... Press another key ... (Escape exits)",i,i)
  9.       i=getkey();
  10.    }
  11. }